Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
metal-uri
Advanced tools
Class for parsing and formatting URIs.
After passing a URI as a string to the constructor, the individual components of the URI can be accessed and updated with the provided setters and getters.
import Uri from 'metal-uri';
const uri = new Uri('http://foo:8080');
uri.getHostname(); // 'foo'
uri.getPort(); // '8080'
uri.getProtocol(); // 'http:'
const uri = new Uri('http://foo:8080/path');
uri.setPathname('login');
uri.setProtocol('https:');
uri.setHostname('bar');
uri.setPort('81');
uri.toString(); // 'https://bar:81/login'
const uri = new Uri('http://hostname?a=1&b=2');
uri.getParameterValue('a'); // '1'
uri.getParameterValue('b'); // '2'
uri.removeParameter('a');
uri.setParameterValue('b', 'x');
uri.addParameterValue('c', 'y');
uri.toString(); // 'http://hostname/?b=x&c=y'
uri.getSearch(); // '?b=x&c=y'
You can also set multiple values for one parameter.
const uri = new Uri('http://hostname?a=1');
uri.addParameterValues('b', ['x', 'y']);
uri.toString(); // 'http://hostname/?a=1&b=x&b=y'
A default protocol is added automatically when none is provided. This default
value will either be http:
or https:
depending if you are on a secure
connection or not.
In order to use other protocols, you must instruct Uri
to not add a default
protocol by passing false
as the second argument.
const uri = new Uri('tel:555-555-5555', false);
uri.setPathname('1-555-555-5555');
uri.toString(); // tel:/1-555-555-5555
Install a recent release of NodeJS if you don't have it yet.
Install local dependencies:
npm install
npm test
Check out the contributing guidelines for more information.
FAQs
Class for parsing and formatting URIs.
The npm package metal-uri receives a total of 1,250 weekly downloads. As such, metal-uri popularity was classified as popular.
We found that metal-uri demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.